* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #0a192f;
            --secondary: #dfb429; /* Gold color */
            --accent: #ff6b6b;
            --glass: rgba(48, 41, 6, 0.27);
            --glass-header:rgba(255, 255, 254, 0.45);
            --glass-border: rgba(255, 255, 255, 0.1);
            --text: #eef2f7;;
            --gold-light: #f9e076;
            --gold-medium: #d4af37;
            --gold-dark: #b8860b;
            --dark-bg: #121212;
            --light-bg: #ffffff;
             --whatsapp-green: #25D366;
            --whatsapp-dark-green: #128C7E;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            background-color:  rgba(252, 246, 197, 0.7);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}
   .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
              background: rgba(53, 49, 30, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.8s ease;
            /* display:none; */
        }

        .logo-container {
            position: relative;
            width: 160px;
            height: 160px;
            margin-bottom: 30px;
        }

        .progress-ring {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }

        .progress-ring-circle {
            stroke-dasharray: 440;
            stroke-dashoffset: 440;
            transition: stroke-dashoffset 0.3s ease;
            stroke-linecap: round;
        }

        .logo-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            background:url(../images/rina\ and\ co\ logo.png);
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }


        .text-container {
            text-align: center;
            margin-top: .4em;
        }

        .company-name h4 {
            color: #f5f5f5;
            letter-spacing: 1px;
            margin-bottom: 8px;
            text-transform: uppercase;
            /* text-shadow: 0 0 8px rgba(210, 175, 100, 0.3); */
        }
        .reg-num{
            color: #d2af64;
             font-size: 1em;
            font-weight: lighter;
            text-align: right;
        }
        .tagline {
            color: #a0a0a0;
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
        }

        .tagline::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #d2af64, transparent);
        }

        @keyframes pulse-loading {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }

        .loading-text {
            color: #d2af64;
            margin-top: 25px;
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            animation: pulse-loading 2s infinite;
        }

/* loader end */
       /* button */
        .btn {
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            border: 2px solid var(--secondary);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--secondary);
              border: 2px solid var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }

        .btn-outline:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        } 

          .hero {
            position: relative;
           height:100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            
        }

        .hero-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        
        }

        .hero-video-container video {
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            object-fit: cover;
            filter: brightness(0.7);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(138, 126, 77, 0.5) 0%, rgba(233, 198, 82, 0.1) 100%);
             background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
            z-index: 1;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

      
      /* Slider Container */
        .slider-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        
        .slider-wrapper {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
        }
        
        .slide {
            width: 25%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: center;
        }
        
        /* Slide Content */
        .slide-content {
        width: 90vw;
            padding: 10px;
            padding-bottom: 2em;
        }
        
        .slide-number {
            font-size: 18px;
            color: #d2af64;
            margin-bottom: 15px;
            font-weight: 600;
            letter-spacing: 2px;
        }
        
        .slide-title {
           /* font-size: 3rem; */
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(to right, var(--gold-light), var(--gold-medium));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.5px;
               margin-top: 3.5em;
        }
        
        .slide-text {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            line-height: 1.8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: var(--text);
        }
        
       
   
 /* Navigation */
        /* --- VERTICAL SLIDER NAVIGATION --- */
.slider-nav {
    position: absolute;
    /* CHANGE TO 'left: 30px;' if you want it on the left side */
    right: 30px; 
    
    /* Center it vertically */
    top: 30%;
    transform: translateY(-50%);
    
    /* This makes the dots stack vertically */
    display: flex;
    flex-direction: column; 
    
    /* Spacing between dots */
    gap: 15px; 
    z-index: 10;
}

/* Style for the dots */
.nav-dot {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3); /* Semi-transparent border */
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Style when active */
.nav-dot.active {
    background: #d4af37; /* Your Gold Color */
    border-color: #d4af37;
    transform: scale(1.3); /* Make active dot slightly bigger */
}


        
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: var(--glass);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 24px;
            color: #d2af64;
            z-index: 10;
            transition: all 0.3s ease;
            border: 1px solid rgba(210, 175, 100, 0.3);
        }
        
        .nav-arrow:hover {
              background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
              color: #bd9d5a;
        }
        
        .arrow-left {
            left: 30px;
        }
        
        .arrow-right {
            right: 30px;
        }
        
      
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .slide-title {
                font-size: 2.8rem;
            }
            
            .slide-text {
                font-size: 1.1rem;
            }
          
        }
        
        @media (max-width: 768px) {
            .slide-title {
                font-size: 2.3rem;

            }
            
            .slide-content {
                padding: 0px 20px;
            }
            
            .nav-arrow {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .arrow-left {
                left: 15px;
            }
            
            .arrow-right {
                right: 15px;
            }
    
            .slider-nav {
                    right: auto; 
                top: 95%;
                display: flex;
                flex-direction: row; 
                z-index: 50;
            }
        }
        
        @media (max-width: 576px) {
            .slide-title {
                font-size: 2rem;
                 margin-top: 5em;
            }
            
            .slide-text {
                font-size: 1rem;
            }
                 .hero {
           height: calc(100vh + 3em);
        }    
        }
         /* WhatsApp Widget Styles */
        .whatsapp-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        
        .whatsapp-bubble {
            background-color: #fff;
            border-radius: 24px;
            padding: 12px 20px;
            margin-bottom: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: relative;
            max-width: 220px;
            opacity: 1;
            transition: opacity 0.8s ease, transform 0.5s ease;
            transform: translateY(0);
            animation: floatBubble 3s ease-in-out infinite;
        }
        
        .whatsapp-bubble.hidden {
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
        }
        
        .whatsapp-bubble:after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 30px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #fff;
        }
        
        .whatsapp-bubble p {
            color: #333;
            font-weight: 500;
            font-size: 15px;
            margin: 0;
        }
        
        .whatsapp-bubble p i {
            color: #25D366;
            margin-right: 5px;
        }
        
        .whatsapp-button {
            background-color: #25D366;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
             overflow: visible !important;
        }
        
        .whatsapp-button:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
        }
        
        .whatsapp-button:active {
            transform: scale(0.95);
        }
        
        .whatsapp-button i {
            color: white;
            font-size: 32px;
        }
        
        .whatsapp-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            z-index: -1;
           animation: whatsapp-pulse-fix 2s infinite !important;
    background-color: #25D366 !important;
    opacity: 0.7 !important;
        }
        
    
        @keyframes floatBubble {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
     

        /* FIX FOR WHATSAPP PULSE */

@keyframes whatsapp-pulse-fix {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
        /* Responsive design */
        @media (max-width: 768px) {
            .whatsapp-widget {
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-bubble {
                max-width: 180px;
                font-size: 14px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .whatsapp-widget {
                bottom: 15px;
                right: 15px;
            }
            
            .whatsapp-button {
                width: 55px;
                height: 55px;
            }
            
            .whatsapp-button i {
                font-size: 28px;
            }
            
            .whatsapp-bubble {
                padding: 10px 15px;
                max-width: 160px;
            }
        }
        /*  */
 /* Cookie Consent Popup – Rina & Co. Edition */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 550px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--secondary, #dfb429);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(223, 180, 41, 0.3);
    padding: 20px 25px;
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--primary, #0a192f);
    font-family: 'Montserrat', sans-serif;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.cookie-icon {
    flex: 0 0 50px;
    font-size: 2.2rem;
    color: var(--secondary, #dfb429);
    text-align: center;
}

.cookie-text {
    flex: 1 1 300px;
}

.cookie-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary, #0a192f);
    font-weight: 600;
}

.cookie-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 5px;
    color: #333;
}

.cookie-text a {
    color: var(--secondary, #dfb429);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s;
}

.cookie-text a:hover {
    color: #b8860b;
}

.email-note {
    font-size: 0.85rem;
    background: rgba(223, 180, 41, 0.1);
    padding: 6px 12px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    border: 1px solid rgba(223, 180, 41, 0.2);
}

.email-note i {
    color: var(--secondary);
}

.cookie-consent .cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
     margin-left: 4em;
}

.cookie-actions .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
   
    text-decoration: none;
    display: inline-flex;
    align-items: center !important;
    justify-content: center;
}

.cookie-actions .btn-primary {
    background: var(--secondary, #dfb429);
    color: var(--primary, #0a192f);
    border-color: var(--secondary);
}

.cookie-actions .btn-primary:hover {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(223, 180, 41, 0.3);
}

.cookie-actions .btn-outline {
    background: transparent;
    color: var(--primary, #0a192f);
    border: 2px solid var(--secondary);
}

.cookie-actions .btn-outline:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(223, 180, 41, 0.2);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .cookie-consent {
        left: 15px;
        right: 15px;
        padding: 18px;
        border-radius: 16px;
    }
    .cookie-icon {
        flex: 0 0 40px;
        font-size: 1.8rem;
    }
    .cookie-consent .cookie-actions  {
        width: 100%;
        justify-content: flex-end;
        margin-left: 0em;
    }
    .cookie-actions .btn {
        flex: 1;
        padding: 10px 12px;
    }
    .cookie-text h4 {
        font-size: 1.1rem;
    }
}
/* Optional: make buttons full-width on very small screens */
@media (max-width: 480px) {
   .cookie-consent .cookie-actions  .btn {
        flex: 1 1 100%;        /* each button takes full width */
        margin: 5px 0;          /* add vertical spacing */
    }
}
@media (max-width: 380px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
   .cookie-consent .cookie-actions  {
        justify-content: center;
    }
}
/* search section */
        /* --- BRIDGE SEARCH BAR STYLING --- */
        /* 1. The Container */
        .hero-search-static {
            position: relative; 
            width: 90%;
            max-width: 1100px;
            margin: 0 auto; 
            margin-top: -70px; 
            margin-bottom: 0px;
            z-index: 10;
            /* background: rgba(18, 18, 18, 0.95);  */
               background: linear-gradient(rgba(0, 0, 0, 0.9),  rgba(48, 41, 6, 0.5));
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4); 
    animation: bridgeSlideUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    
    /* Start invisible so it can fade in */
    opacity: 0; 
    
    /* Delay it slightly so the Hero Text loads first */
    animation-delay: 0.5s;
        }
/* Define the Slide Up movement */
@keyframes bridgeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px); /* Starts 50px lower */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Locks into correct position */
    }
}
/* --- 2. MOBILE BUTTON PULSE (Conversion Booster) --- */
/* Only animate the button on small screens */
@media (max-width: 768px) {
    .btn-search {
        /* Gentle pulse to catch the eye */
        animation: goldPulse 3s infinite;
    }
     .btn-search {
        animation: gold-pulse-fixed 3s infinite !important;
        position: relative;
        z-index: 1;
    }
    
   

}

/* Define the Golden Pulse */
 @keyframes gold-pulse-fixed {
        0% {
            box-shadow: 0 0 0 0 rgba(223, 180, 41, 0.4),
                       0 4px 8px rgba(223, 180, 41, 0.2);
        }
        70% {
            box-shadow: 0 0 0 15px rgba(223, 180, 41, 0.1),
                       0 6px 20px rgba(223, 180, 41, 0.3);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(223, 180, 41, 0),
                       0 4px 8px rgba(223, 180, 41, 0.2);
        }
    }
        /* 2. Grid Layout for Desktop */
        .search-form {
            display: grid;
            /* 4 Columns: Location | Size | Type | Button */
            grid-template-columns: 1.5fr 1fr 1fr 0.8fr; 
            gap: 20px;
            align-items: end;
        }

        /* 3. Input Styling */
        .search-group {
            display: flex;
            flex-direction: column;
        }

        .search-group label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #d4af37; /* Gold */
            margin-bottom: 10px;
            font-weight: 600;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-wrapper i {
            position: absolute;
            left: 15px;
            color: #d4af37;
            font-size: 1rem;
            pointer-events: none;
        }

        .search-control {
            width: 100%;
            padding: 15px 15px 15px 45px;
            background: rgba(250, 239, 193, 0.05); /* Slight white tint */
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            color: #fff;
            font-size: 16px; /* Prevents zoom on mobile */
            outline: none;
            transition: all 0.3s;
        }

        .search-control:focus {
            border-color: #d4af37;
            background: rgba(0,0,0,0.5);
        }
/* --- DROPDOWN STYLING --- */

/* 1. Style the Dropdown Menu Items (Options) */
select.search-control option {
    /* Solid Navy Background to match theme */
    background-color: var(--dark-bg); /* #0a192f */
    
    /* Light Text */
    color: var(--text); /* #eef2f7 */
    
    /* Spacing for readability */
    padding: 12px;
    font-size: 1rem;
}

/* 2. Styling for when an option is Hovered or Checked */
/* Note: Support varies by browser, but this covers most Windows/Mac setups */
select.search-control option:checked,
select.search-control option:hover {
    background-color: var(--secondary) !important; /* Gold Background */
    color: var(--primary) !important; /* Navy Text */
}

/* 3. Ensure the main select box keeps the theme when opened */
select.search-control:focus {
    background-color: var(--dark-bg); /* Dark background when active */
    color: var(--text);
    border-color: var(--secondary);
}
        /* 4. Button Styling */
        .btn-search {
            height: 52px; /* Matches input height */
            background: #d4af37;
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .btn-search:hover {
            background: #fff;
                color: #d4af37;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        /* Custom Arrow for Select Dropdown */
        select.search-control {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 15px;
        }

        /* --- MOBILE RESPONSIVENESS --- */
        @media (max-width: 992px) {
            .hero-search-static {
                /* On Tablets/Mobile, reduce overlap */
                margin-top: -70px;
                padding: 20px;
                width: 95%;
            }
            
            .search-form {
                /* Stack inputs vertically */
                grid-template-columns: 1fr; 
                gap: 15px;
            }
            
            .search-group label {
                display: none; /* Hide labels to save space */
            }
            
            .btn-search {
                margin-top: 10px;
            }
        }
        /* Content Sections */
        .section {
            padding: 100px 10%;
        }

        .section-header {
           
            text-align: justify;
             text-align: center;
            margin-bottom: 70px;
        }

        .section-header h2 {
            /* font-size: 2.8rem; */
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
            color: var(--text);
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .section-header p {
            max-width: 600px;
            margin: 20px auto 0;
            padding-top: 1em;
            opacity: 0.8;
            line-height: 1.8;
        }


        
       
        /* Project Lifecycle */
        .lifecycle-section {
            padding: 30px 0;
            background: var(--light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-header p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--gray);
            font-size: 1.1rem;
        }

        .lifecycle-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .lifecycle-step {
            background: white;
            border-radius: 10px;
            padding: 45px 30px;
            text-align: center;
            width: 270px;
            box-shadow: 0 5px 15px rgba(252, 241, 141, 0.39);
            transition: var(--transition);
            /* cursor: pointer; */
            /* border: 2px solid transparent; */
        }

        .lifecycle-step.active, .lifecycle-step:hover {
            border-color: rgb(185, 159, 7);
            transform: translateY(-10px);
        }

        .lifecycle-step i {
            font-size: 2.6rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .lifecycle-step h3 {
            font-size: 1.34rem;
            margin-bottom: 10px;
        }

        /*  */
         /* About Section */
        .about-section {
            background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
        }
       
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
         .reg-num-2{
            color: var(--secondary); 
             font-size: 1em;
            font-weight: 500;
            font-weight: light;
            max-width:31em;
            margin:  0 auto;
            text-align:right;
        }
        .about-image {
            position: relative;
            border-radius: 6px;
            overflow: hidden;
            height: 500px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
 
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
            z-index: 1;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--gold-medium);
        }

        .about-content p {
            margin-bottom: 25px;
            line-height: 1.8;
            opacity: 0.9;
        }

        .milestones {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .milestone-card {
            text-align: center;
            padding: 20px;
        }

        .milestone-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold-medium);
            margin-bottom: 10px;
        }

        .milestone-text {
            font-size: 1rem;
            opacity: 0.9;
        }
         /* Responsive Design */
        @media (max-width: 992px) {
            .about-container {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                height: 400px;
            }
            
            .section-header h2 {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 80px 5%;
            }
            
            .milestones {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
          /* .about-content p {
               text-align: justify;  
        text-align-last: auto;   
    } */
        }
    /* journey */
         .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

       
        .journey-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
    
        }

        .journey-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
                 position: relative;
             
        }
  
        .journey-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
        }

        .journey-phase {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--secondary);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            z-index: 2;
        }

        .journey-image {
            height: 280px;
            position: relative;
            overflow: hidden;
        }

        .journey-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .journey-card:hover .journey-image img {
            transform: scale(1.05);
        }

        .journey-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: var(--glass);
            color: white;
        }

        .journey-content {
            padding: 25px;
        }

        .journey-content h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .journey-content p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .journey-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

    
           /* =========================================
   SHUFFLE / STACKING SECTION STYLES
   ========================================= */

/* --- 1. Main Container --- */
.shuffle-section {
    padding: 40px 0;
    position: relative;
    width: 100%;
    z-index: 10; 
       background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
}

/* --- 2. Sticky Wrapper --- */
.video-section {
    position: -webkit-sticky;
    position: sticky;
    
    /* Stick 15% from the top */
    top: 10vh; 
    
    height: auto;
    padding-bottom: 10vh; /* Spacing for stacking */
    
    display: flex;
    justify-content: center;
    transform: translate3d(0,0,0);
}

/* --- 3. The Card (White Glass Design) --- */
.card-content {
    /* SIZE: 85% Width, 80% Height */
    width: 85vw; 
    height: 80vh; 
    max-width: 1600px;
    
    /* WHITE GLASS BACKGROUND */
    background: rgba(255, 255, 255, 0.85);
         background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
    /* Glass Blur */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    /* Gold Border */ 
    border-radius: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(212, 175, 55, 0.2);
    /* Layout: Image (60%) | Text (40%) */
    display: grid;
    grid-template-columns: 55% 45%; 
    overflow: hidden;
    /* Soft, Light Shadow */
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.card-content:hover {
    box-shadow: 0 30px 80px rgba(223, 180, 41, 0.15); /* Gold glow shadow */
    border-color: #dfb429; /* Solid Gold on hover */
}
 .card-content .section-header .btn{
   margin: auto;
}
/* --- 4. Video/Image Area (Full Height) --- */
.video-container {
    position: relative;
    width: 100%;
    height: 100%; /* Forces fill */
      overflow: hidden;
    /* Gold divider line */
    border-right: 1px solid rgba(223, 180, 41, 0.2); 
}
.video-placeholder{
    height:560px;
}
.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers area without stretching */
    transition: transform 0.8s ease;
}

.card-content:hover .video-placeholder img {
    transform: scale(1.03);
}

/* Overlay (Light tint instead of dark) */
.video-overlay-vid {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1); 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.card-content:hover .video-overlay-vid {
    background: rgba(255, 255, 255, 0);
}

/* Play Button (Gold Gradient) */
.play-button {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f9e076 0%, #d4af37 50%, #b8860b 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
   animation: pulse-gold-fixed 2s infinite !important;
    transition: transform 0.3s;
    z-index: 5;
}

.play-button:hover {
    transform: scale(1.15);
    color: #d4af37; /* Gold Icon */
}

.play-button i {
    font-size: 2rem;
    color: #fff; /* White icon initially */
    margin-left: 6px;
    transition: color 0.3s;
}
/* 1. FIX VIDEO PLAY BUTTON PULSE (Shuffle section) */
   

@keyframes pulse-gold-fixed {
    0% { 
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7),
                   0 0 0 0 rgba(212, 175, 55, 0.4); 
    }
    70% { 
        box-shadow: 0 0 0 25px rgba(212, 175, 55, 0),
                   0 0 0 15px rgba(212, 175, 55, 0); 
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0),
                   0 0 0 0 rgba(212, 175, 55, 0); 
    }
}


/* video pop up player */
/* Lightbox Styles */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 29, 29, 0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.dailymotion-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

#dailymotion-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 32px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-lightbox:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ============================================
   VIDEO THUMBNAIL STYLES
   ============================================ */
.video-placeholder {
    position: relative;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    display: block;
}

/* Thumbnail loading states */
.video-placeholder img.thumbnail-loading {
    opacity: 0.7;
    filter: blur(5px) grayscale(20%);
    transform: scale(1.02);
}

.video-placeholder img.thumbnail-loaded {
    opacity: 1;
    filter: blur(0) grayscale(0%);
    animation: thumbnailFadeIn 0.6s ease;
}

@keyframes thumbnailFadeIn {
    from {
        opacity: 0.8;
        filter: blur(10px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}


/* Video container for aspect ratio */
.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}



@keyframes lightboxAppear {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .lightbox-content {
        width: 98%;
        border-radius: 8px;
    }
    
    .close-lightbox {
        top: -45px;
        right: 5px;
        font-size: 32px;
        width: 45px;
        height: 45px;
    }
   
}

@media (max-width: 480px) {
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 18px;
        border-width: 2px;
    }
}
/* --- 5. Text Area --- */
.shuffle-section .section-header {
    padding: 60px;
    color: #0a192f; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
}

.shuffle-section  .section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 18px;
    background: linear-gradient(to right, #ecb731, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.shuffle-section .section-header p {
     font-size: 1.15rem;
    line-height: 1.6;
    color: #4a5568; 
}



/* =========================================
   RESPONSIVE DESIGN (MOBILE FIXES)
   ========================================= */

@media (max-width: 992px) {
    /* Tablet/Mobile Layout */
    .card-content {
        width: 90vw; 
        height: 80vh; 
        
        /* Switch to Vertical Stack */
        grid-template-columns: 1fr; 
        grid-template-rows: 50% 50%; /* Split 50/50 */
    }

    .video-container {
        border-right: none;
        border-bottom: 1px solid rgba(223, 180, 41, 0.2);
        height: 100%; /* Ensure it fills the 50% row */
    }
    
    .shuffle-section .section-header {
        padding: 10px;
        justify-content: flex-start; /* Align text to top */
        /* ALLOW SCROLLING if text is long */
        overflow-y: auto;    
        /* HIDE SCROLLBAR (Clean UI) */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;  /* IE/Edge */
    }
    
    /* Hide scrollbar for Chrome/Safari/Opera */
    .section-header::-webkit-scrollbar {
        display: none;
    }

    .shuffle-section.section-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        margin-top: 10px;
    }
    
    .shuffle-section .section-header p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* Smaller Play Button */
    .play-button {
        width: 60px;
        height: 60px;
    }
    .play-button i {
        font-size: 1.2rem;
    }
}

        /* Glass Effect Video Popup Modal */
       

        

/* --- MODAL CSS --- */
.video-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal-overlay.active {
    opacity: 1; visibility: visible;
}

.video-modal-content {
    width: 90%; max-width: 1000px;
    background: #000;
    border: 1px solid #dfb429;
    border-radius: 10px;
    overflow: hidden;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.video-modal-overlay.active .video-modal-content {
    transform: scale(1);
}

.modal-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.modal-video-player {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.close-modal {
    position: absolute; top: -40px; right: 0;
    color: #fff; font-size: 40px; cursor: pointer;
}
        /* Responsive adjustments */
         @media (max-width: 450px) {
              .journey-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

        }
        
        }
        @media (max-width: 768px) {
            
            .shuffle-section .section-header h2 {
                font-size: 2rem;
                padding-top: 1em;
            }
            
             .shuffle-section .section-header p {
                font-size: 1rem;
            }
            .video-placeholder{
                    height:360px;
                }
            .play-button {
                width: 60px;
                height: 60px;
            }
            
            .play-button i {
                font-size: 1.5rem;
            }
           
              .video-section {
                padding: 25px 20px;
            }
            .video-controls {
                flex-wrap: wrap;
            }
            
            .progress-container {
                order: 3;
                flex: 0 0 100%;
                margin: 10px 0 0;
            }
            
        }
        /* elora */
         /*  */
        .hero-development-showcase {
      background: rgb(253, 252, 244);
    padding: 100px 5%;
    text-align: center;
}
/* Gold-themed video section styling */
    .video-section-wrapper {
        padding: 60px 20px;
        background: linear-gradient(135deg, rgba(15, 14, 0, 0.7) 0%, rgba(48, 41, 6, 0.3) 100%);
        position: relative;
        overflow: hidden;
    }
    
    .video-section-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.08) 0%, transparent 50%);
        z-index: 1;
    }
    
    .video-container-gold {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(212, 175, 55, 0.1),
            inset 0 0 30px rgba(212, 175, 55, 0.05);
        background: rgba(10, 25, 47, 0.3);
        z-index: 2;
    }
    
    .video-wrapper-gold {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
    }
    
    .video-wrapper-gold video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: brightness(0.9) contrast(1.1);
        transition: transform 0.5s ease;
    }
    
    .video-container-gold:hover .video-wrapper-gold video {
        transform: scale(1.02);
    }
    
   
    
    .gold-frame {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 20px;
        pointer-events: none;
        z-index: 4;
        box-shadow: 
            inset 0 0 30px rgba(212, 175, 55, 0.1),
            0 0 40px rgba(212, 175, 55, 0.1);
    }
    
    .loop-indicator {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: rgba(10, 25, 47, 0.8);
        backdrop-filter: blur(5px);
        padding: 8px 15px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 8px;
        border: 1px solid rgba(212, 175, 55, 0.3);
        z-index: 5;
    }
    
    .loop-indicator i {
        color: #d4af37;
        font-size: 0.9rem;
        animation: spin 3s linear infinite;
    }
    
    .loop-indicator span {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.85rem;
        color: #f9e076;
        font-weight: 500;
    }
    
    /* Animations */
    @keyframes pulse-gold {
        0%, 100% {
            box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2);
        }
        50% {
            box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
        }
    }
    
    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .video-section-wrapper {
            padding: 40px 15px;
        }
        
        .video-wrapper-gold {
            height: 400px;
        }
        
        .overlay-content {
            padding: 30px 20px;
            margin: 0 15px;
        }
        
        .video-title {
            font-size: 1.8rem;
        }
        
        .video-tagline {
            font-size: 1rem;
        }
        
        .gold-line {
            width: 50px;
        }
        
        .gold-circle {
            width: 50px;
            height: 50px;
        }
    }
    
    @media (max-width: 480px) {
        .video-wrapper-gold {
            height: 300px;
        }
        
        .video-title {
            font-size: 1.5rem;
        }
        
        .video-tagline {
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        
        .video-description {
            font-size: 1rem;
        }
        
        .loop-indicator {
            bottom: 10px;
            right: 10px;
            padding: 6px 12px;
        }
        
        .loop-indicator span {
            font-size: 0.8rem;
        }
    }


.progress-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding-top: 20px;
}

.progress-gallery img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.progress-gallery img:hover {
    transform: scale(1.03);
}
 .hero-development-showcase .section-header span{
    color:var(--secondary);
    font-size: 1.2em;
 }
/* grid */
        .projects-grid {
            gap: 30px;
        }
  

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }
 
        .project-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            max-width: 480px;
            margin: 0 auto;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .project-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.05);
        }

        .project-status {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(44, 62, 80, 0.9);
            background: var(--secondary);
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .project-status i {
            margin-right: 5px;
            font-size: 0.9rem;
        }

        .project-content {
            padding: 25px;
        }

        .project-content h3 {
            font-size: 1.6rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 700;
          font-family: 'Montserrat', sans-serif;
        }

        .project-location {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color:  var(--secondary);
            font-weight: 500;
        }

        .project-location i {
            margin-right: 8px;
            font-size: 1.2rem;
        }

        .project-features {
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            padding: 20px 0;
            margin: 20px 0;
        }

        .project-features p {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: #34495e;
            font-size: 0.95rem;
        }

        .project-features i {
            margin-right: 10px;
            width: 24px;
            height: 24px;
            background: #f8f8f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            /* color */
            font-size: 0.8rem;
        }

        .project-features p:last-child {
            margin-bottom: 0;
        }

        .project-stats {
            margin-bottom: 25px;
        }

        .stat-value {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .flex-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .stat-label {
            display: flex;
            align-items: center;
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .stat-label i {
            color:rgba(44, 62, 80, 0.9);
            color: var(--secondary);
            margin-right: 8px;
            font-size: 0.9rem;
        }

        .btn-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
 
      

        .btn i {
            margin-left: 8px;
            font-size: 0.9rem;
        }
        .wa-me-btn{
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            padding: 1rem;
              box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
              border:none;
        }
 .wa-me-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(18, 140, 126, 0.6);
            color: white;
            transition: .8s all;
            background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
                border:none;
        }
        .tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(44, 62, 80, 0.9);
            color: white;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        /* Price styling for project cards */
/* Enhanced price display with pre‑launch label */
.project-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: var(--secondary);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    flex-wrap: wrap;
}

.price-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.old-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    color: #fff;
    font-weight: 400;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 12px;
    border-radius: 40px;
    white-space: nowrap;
}

.current-price i {
    font-size: 0.9rem;
}

/* Mobile responsiveness */
@media (max-width: 576px) {
    .project-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 15px;
        border-radius: 30px;
    }
    .price-info {
        width: 100%;
    }
    .current-price {
        align-self: flex-start;
        font-size: 1.2rem;
        padding: 4px 10px;
    }
    .old-price {
        font-size: 1rem;
    }
    .price-label {
        font-size: 0.7rem;
    }
}
        @media(min-width:576px){
          
             .flex-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 0px;
            padding: 10px;
          
        }
         } 
          @media(max-width:995px){
           
             .flex-stats {
            display: block;
             }
          .project-location { 
            text-align: center;

        }
         } 
         /*  */
         /* --------------------------------------------- */
/* FUTURISTIC PLOT LAYOUT SECTION */
/* --------------------------------------------- */
.plot-layout-section {
    padding: 80px 0;
    background: linear-gradient(rgba(18, 18, 18, 0.02), var(--glass));
    position: relative;
}

.layout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.layout-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.4s ease;
}

.layout-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.25);
}

.layout-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.layout-image:hover img {
    transform: scale(1.03);
}

.image-overlay-gold {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 60%, rgba(212, 175, 55, 0.1));
    pointer-events: none;
}

.layout-content {
    padding: 20px;
}

.layout-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--secondary), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Playfair Display', serif;
}

.layout-content p {
    color: var(--primary);
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
    text-align: justify;
}

.layout-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(5px);
}

.feature-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .layout-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .layout-image {
        max-height: 400px;
    }
    
    .layout-content h3 {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .plot-layout-section {
        padding: 60px 20px;
    }
    
    .layout-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 10px 15px;
    }
}
/* Payment Plans */
       .payment-section {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }
        
       
        
        .plan-card {
            background: white;
            border-radius: 18px;
            box-shadow: 0 10px 30px rgba(223, 180, 41, 0.08);
            padding: 35px;
            height: 100%;
            transition: all 0.4s ease;
            border: 1px solid #e9ecef;
            position: relative;
            overflow: hidden;
        }
        
        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #dfb429;
        }
        
        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(223, 180, 41, 0.12);
            border-color: #f1d98c;
        }
        
        .plan-card.popular {
            border: 1px solid  #dfb429;
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(223, 180, 41, 0.15);
        }
        
        .plan-card.popular::before {
            background: linear-gradient(to right, #dfb429, #b8941a);
            height: 6px;
        }
        
        .plan-card.popular:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 45px rgba(223, 180, 41, 0.2);
        }
        
        .popular-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: linear-gradient(45deg, #dfb429, #b8941a);
            color: white;
            font-weight: 700;
            padding: 6px 40px;
            transform: rotate(45deg);
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .plan-name {
            font-size: 1.9rem;
            color: #2c3e50; 
            font-weight: 700;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f9f2df;
        }
        
        .deposit-badge {
            display: inline-block;
            background: linear-gradient(135deg,  #1a252f,#2c3e50);
            background: var(--secondary);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 25px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .deposit-percentage {
            font-size: 1.4rem;
            color: var(--light);
            font-weight: 700;
        }
        
        .plan-details {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 35px;
        }
        
        .plan-details li {
            padding: 12px 0;
            border-bottom: 1px dashed  #e9ecef;
            display: flex;
            align-items: center;
        }
        
        .plan-details li:last-child {
            border-bottom: none;
        }
        
        .plan-details i {
            color: var(--secondary);
            margin-right: 12px;
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }
        
        .more-info-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #dfb429,  #b8941a);
            color: var(--primary);
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            width: 100%;
            text-align: center;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(223, 180, 41, 0.2);
        }
        
        .more-info-btn:hover {
            border-color: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(223, 180, 41, 0.3);
        }
        
        .more-info-btn i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .more-info-btn:hover i {
            transform: translateX(6px);
        }
        
        .plan-highlight {
            background:  #f9f2df;
            border-radius: 12px;
            padding: 22px;
            margin-top: 30px;
            border-left: 4px solid var(--secondary);
        }
        
        .plan-highlight h5 {
            color: var(--primary);
            margin-bottom: 8px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .plan-highlight h5 i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .plan-highlight p {
            color: #34495e;
            margin-bottom: 0;
        }
        
        .payment-icon {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 20px;
            text-align: center;
            background: linear-gradient(135deg, var(--secondary), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-title {
            text-align: center;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 700;
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--secondary), transparent);
        }
        .section-subtitle {
            text-align: center;
            color: #34495e;
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 1.2rem;
            line-height: 1.7;
        }
        
        @media (max-width: 768px) {
            .plan-card {
                margin-bottom: 30px;
                padding: 25px;
            }
            
            .company-name {
                font-size: 2.2rem;
            }
            
            .plan-name {
                font-size: 1.7rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
        
       
        /* Animation for cards on load */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(25px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .plan-card {
            animation: fadeInUp 0.7s ease forwards;
            opacity: 0;
        }
        
        .plan-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        /* Gold decorative elements */
        .gold-ornament {
            position: absolute;
            width: 60px;
            height: 60px;
            opacity: 0.05;
            pointer-events: none;
        }
        
        .gold-ornament-1 {
            top: 10%;
            left: 5%;
            background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
        }
        
        .gold-ornament-2 {
            bottom: 10%;
            right: 5%;
            background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
        }
        
        .gold-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px 0;
        }
        
        .gold-divider-line {
            height: 1px;
            background: linear-gradient(to right, transparent, var(--secondary), transparent);
            flex-grow: 1;
            max-width: 200px;
        }
        
        .gold-divider-icon {
            margin: 0 20px;
            color: var(--secondary);
            font-size: 1.5rem;
        }
        /* WhatsApp specific styles */
        .whatsapp-redirect-modal .modal-content {
            border: 2px solid var(--whatsapp-green);
        }
        
        .whatsapp-redirect-modal .modal-header {
            background-color: var(--whatsapp-green);
            color: white;
        }
        
        .whatsapp-redirect-modal .modal-body {
            padding: 30px;
        }
        
        .whatsapp-icon {
            font-size: 4rem;
            color: var(--whatsapp-green);
            text-align: center;
            margin-bottom: 20px;
        }
        
        .whatsapp-redirect-btn {
            background-color: var(--whatsapp-green);
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            width: 100%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        
        .whatsapp-redirect-btn:hover {
            background-color: var(--whatsapp-dark-green);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }
        
        .whatsapp-redirect-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .countdown-text {
            font-size: 0.9rem;
            color: #34495e;
            text-align: center;
            margin-top: 15px;
        }
        
        #redirectCountdown {
            font-weight: 700;
            color: var(--primary);
        }
        
        .plan-summary {
            background-color: #f9f2df;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 25px;
        }
        
        .plan-summary h6 {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .plan-summary p {
            margin-bottom: 5px;
            color:  #34495e;
        }
        
        .whatsapp-note {
            font-size: 0.9rem;
            color: #6c757d;
            text-align: center;
            margin-top: 20px;
        }
          /* payment plan */
          /* investment  */
          .investment-section {
            padding: 4rem 2rem;
               background: rgb(253, 252, 244);
            }

                .investment-highlights {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 2rem;
                margin: 3rem 0;
                }

                .highlight {
                background: white;
                border-radius: 10px;
                padding: 2rem;
                box-shadow: 0 5px 15px rgba(0,0,0,0.05);
                transition: transform 0.3s ease;
                }

                .highlight:hover {
                transform: translateY(-5px);
                }

            .icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
            
            }
            .investment-section a{
                font-size: 1em;
            }

          /* investment */

        /* Construction Excellence */
        .excellence-section {
            padding: 100px 0;
            /* background: rgb(253, 252, 244); */
        }

        .tabs-container {
            display: flex;
            gap: 30px;
        }

        .tabs-nav {
            flex: 0 0 250px;
        }

        .tab-btn {
            display: block;
            width: 100%;
            text-align: left;
            padding: 18px 25px;
            margin-bottom: 10px;
            background: var(--light);
                 background: white;
            border: none;
            border-left: 4px solid transparent;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .tab-btn.active, .tab-btn:hover {
            background: rgba(0, 102, 204, 0.05);
            border-left-color: var(--secondary);
            color: var(--secondary);
        }

        .tabs-content {
            flex: 1;
        }

        .tab-pane {
            display: none;
        }

        .tab-pane.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .excellence-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .excellence-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: var(--transition);
        }

        .excellence-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }

        .excellence-card i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .excellence-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

       
      /* FAQ Section */
        .faq-section {
          /* background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)); */
          padding-top:3em;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 16px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 25px;
            background: rgb(253, 252, 244);
            border: 2px solid var(--gold-medium);
               border: 1px solid rgb(247, 232, 149);
                box-shadow: 0px 50px 20px rgba(243, 199, 4, 0.9);
             border-radius: 16px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question h3 {
            font-size: 1.2rem;
            font-weight: 500;
        }

        .faq-question i {
            color: var(--gold-medium);
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: rgba(236, 225, 121, 0.5);
            background: white;
            border: 1px solid var(--glass-border);
            border-radius: 16px;
        }

        .faq-answer p {
            padding: 25px 0;
            line-height: 1.8;
            opacity: 0.9;
        }

        .faq-item.active .faq-question {
             background: rgba(236, 225, 121, 0.5);
            border-color: var(--gold-medium);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }
  /* Main Content */
        .contact-container {
             /* background:rgb(253, 252, 244); */
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        /* ============================================
   MOBILE TOGGLE BUTTONS STYLING
   ============================================ */

.mobile-toggle-buttons {
    position: relative;
    margin: 20px auto 30px;
    max-width: 400px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toggle-container {
    display: flex;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
}

.toggle-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    z-index: 2;
}

.toggle-btn.active {
    color: #fff;
    background: linear-gradient(135deg, var(--gold-medium), var(--gold-dark),var(--secondary));
    box-shadow: 0 4px 15px rgba(234, 199, 102, 0.363);
}

.toggle-btn:not(.active):hover {
    color: #333;
    background: rgba(255, 255, 255, 0.2);
}

.toggle-indicator {
    position: absolute;
    top: 8px;
    height: calc(100% - 16px);
    width: 50%;
     background: linear-gradient(135deg, var(--primary), var(--gold-dark),var(--gold-medium));
    border-radius: 10px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(234, 221, 102, 0.3);
    z-index: 0;
}

/* Form content containers for mobile */
@media (max-width: 767.98px) {
    .form-content,
    .form-info {
        transition: all 0.5s ease;
    }
    
    /* Hide/show states for mobile */
    .form-content.mobile-hidden {
        display: none !important;
    }
    
    .form-info.mobile-hidden {
        display: none !important;
    }
    
    /* Ensure both are visible on desktop */
    .d-md-block {
        display: block !important;
    }
}

/* Optional: Add some animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-content.mobile-active,
.form-info.mobile-active {
    animation: fadeInUp 0.5s ease;
}
        /* Contact Form */
         .form-section {
            background:white;
        }
        
        .form-container {
            background-color: white;
            border-radius: 12px;
                   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .form-info {
            background: linear-gradient(135deg, var(--primary), var(--gold-dark),var(--primary));
            color: white;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .form-info h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .contact-methods {
            margin-top: 2rem;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
         @media (max-width: 900px) {
           .contact-method {
            display: block;
            align-items: center;
         
        }
            .contact-method p{
                font-size: .9em;
            }
         .contact-method h4 {
            margin-top: 0.5rem;
        }
        }
        .contact-icon-large {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.2);
               border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            font-size: 1.5rem;
        }
        
        .form-content {
            padding: 3rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 1rem;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .whatsapp-cta {
            width: 100%;
             background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            padding: 1rem;
              box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
              border:none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            margin-top: 1.5rem;
            transition: background-color 0.3s;
        }
        
        .whatsapp-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(18, 140, 126, 0.6);
            color: white;
            transition: .8s all;
            background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
                border:none;
        }
        
 /* Responsive Design */
        @media (max-width: 992px) {
            .form-info {
                padding: 2rem;
            }
        }
        /* Investor Relations */
       
        /* Contact Info */
        .contact-info {
            flex: 1;
            min-width: 300px;
              
        }
        
        .info-card {
               background: rgba(252, 252, 164, 0.3);
                 background-color:  rgba(252, 246, 197, 0.7);
            border-radius: 15px;
            padding: 40px;
            color: var(--text-light);
            box-shadow: 0 15px 40px rgba(10, 25, 47, 0.25);
            margin-bottom: 30px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
      
        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-detail i {
            font-size: 1.3rem;
            color: var(--secondary);
            min-width: 30px;
            margin-top: 5px;
        }
        
        .contact-text {
            flex: 1;
        }
        
        .contact-text h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--secondary);
        }
        
        .contact-text p {
            color: var(--text-gray);
            line-height: 1.7;
        }
        
        .business-hours {
            background: rgba(172, 172, 112, 0.3);
               box-shadow: 0 15px 40px rgba(10, 25, 47, 0.15); 
            border-radius: 4px;
            padding: 20px;
            margin-top: 20px;
            /* border: 1px solid var(--gold-dark); */
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--gold-dark);
        }
        
        .hours-item:last-child {
            border-bottom: none;
        }
        
        .day {
             color: var(--primary);
        }
        
        .hours {
            color: var(--primary);
            font-weight: 500;
        }
        
        /* Social Media */
        .social-media {
            text-align: center;
            margin-top: 30px;
        }
        
        .social-media h4 {
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
           background-color: rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 1.4rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .social-icons a:hover {
               background: rgba(212, 175, 55, 0.1);
            color: var(--gold-dark);
            transform: translateY(-5px);
        }
         .status-message {
            padding: 15px;
            border-radius: 8px;
            margin-top: 1.5rem;
            text-align: center;
            font-weight: 500;
            display: none;
            animation: fadeIn 0.5s;
        }
        
        .status-success {
            background-color: rgba(40, 167, 69, 0.15);
            border: 1px solid rgba(40, 167, 69, 0.2);
            color: #198754;
            display: block;
        }
        
        .status-error {
            background-color: rgba(220, 53, 69, 0.15);
            border: 1px solid rgba(220, 53, 69, 0.2);
            color: #dc3545;
            display: block;
        }
        
        .status-sending {
            background-color: var(--gold-dark);
            border: 1px solid var(--gold-dark);
            /* color: #0dcaf0; */
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        /* status message */
        
         /* Testimonials Section */
        .testimonials-section {
            background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
            border-radius: 16px;
            padding: 50px 30px;
            margin: 20px 0;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            border-top: 2px solid var(--secondary);
        }
        /* Testimonial Cards */
        .testimonial-cards {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .testimonial-card {
          
              background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(212, 175, 55, 0.15);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
        }

        /* .testimonial-card:nth-child(even) .testimonial-video {
            order: 2;
        } */
/* Mobile specific */

/* Mobile text truncation */
@media (max-width: 768px) {
    .testimonial-content {
            min-width: 350px;
            padding: 0px;
           
        }

    /* Force video to top on mobile */
    .testimonial-card .testimonial-video {
        order: -1; /* Negative order places it first */
    }
    
    .testimonial-card .testimonial-content {
        order: 0;
    }

    .testimonial-text.truncated {
        max-height: calc(1.7em * 4); /* 4 lines of text */
        overflow: hidden;
        position: relative;
        transition: max-height 0.3s ease;
    }
    
    .testimonial-text.truncated::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40px;
        background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
        pointer-events: none;
        opacity: 1;
        transition: opacity 0.3s ease;
    }
    
    .testimonial-text.expanded {
        max-height: 1000px !important;
        overflow: visible;
    }
    
    .testimonial-text.expanded::after {
        opacity: 0;
    }
    
    .read-more-btn {
        background: transparent;
        border: none;
        color: var(--secondary);
        font-weight: 600;
        margin-top: -8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.9rem;
        padding: 5px 0;
        transition: all 0.3s ease;
    }
    
    .read-more-btn:hover {
        color: var(--gold-dark);
        transform: translateY(-1px);
    }
    
    .read-more-btn i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }
    
    .read-more-btn:hover i {
        transform: translateY(1px);
    }
}

/* For desktop: ensure no truncation */
@media (min-width: 769px) {
  
}
        /* Video Section */
        .testimonial-video {
            flex: 1;
            min-width: 300px;
            position: relative;
            height: 420px;
              min-height: 460px;
            overflow: visible !important;
        }

        .video-player {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: #000;
            display: block;
            transition: transform 0.4s ease;
        }

        .testimonial-video:hover .video-player, .testimonial-video:hover .video-overlay{
            transform: scale(1.03);
        }
      
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(49, 45, 6, 0.35), rgba(212, 175, 55, 0.25));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.5s ease;
            z-index: 2;
        }

        .video-overlay:hover {
            background: linear-gradient(45deg, rgba(44, 47, 10, 0.75), rgba(212, 175, 55, 0.35));
        }

        .play-btn {
            width: 90px;
            height: 90px;
            background: rgba(212, 175, 55, 0.85);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
            animation: pulse-testimonial-fixed 2s infinite !important;
        
        }

        .play-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 0 15px rgba(212, 175, 55, 0.2);
            background: rgba(212, 175, 55, 0.95);
        }

/* 2. FIX TESTIMONIAL PLAY BUTTON PULSE */

@keyframes pulse-testimonial-fixed {
    0% { 
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4),
                   0 0 0 0 rgba(255, 255, 255, 0.3); 
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.2),
                   0 0 0 20px rgba(212, 175, 55, 0); 
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0),
                   0 0 0 0 rgba(212, 175, 55, 0); 
    }
}
        .play-btn i {
            font-size: 36px;
            color: #fff;
            margin-left: 5px;
        }

        .overlay-text {
            color: white;
            font-size: 1.3rem;
            text-align: center;
            padding: 0 20px;
            max-width: 300px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* Content Section */
        .testimonial-content {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .testimonial-content::before {
            content: '"';
            position: absolute;
            top: 30px;
            left: 35px;
            font-size: 7rem;
            font-family: 'Playfair Display', serif;
            color: rgba(212, 175, 55, 0.15);
            line-height: 1;
            z-index: -1;
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            line-height: 1.9;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
           
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 2px solid var(--gold-medium);
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .author-image:hover img {
            transform: scale(1.1);
        }

        .author-info h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            font-weight: 600;
                color: var(--primary);
        }

        .author-info p {
             /* color: var(--gold-medium); */
             font-weight: 450;
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 8px;
        }
        /* .testimonial-content .btn-primary{
            background:var(--gold-dark)
        } */
        .rating {
            color: var(--gold-medium);
            font-size: 1rem;
            letter-spacing: 2px;
        }
        /* Testimonials Toggle Styles */
.testimonials-hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
#hiddenTestimonials .testimonial-card{
    margin-top: 2em;
}
.testimonials-hidden.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

#toggleTestimonials {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#toggleTestimonials:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

#toggleTestimonials i {
    transition: transform 0.3s ease;
}

#toggleTestimonials.expanded i {
    transform: rotate(180deg);
}

.btn-text {
    margin-right: 8px;
}


.testimonials-hidden .testimonial-card {
    opacity: 0;
    transform: translateY(-20px); /* Changed from positive to negative */
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonials-hidden.show .testimonial-card {
    opacity: 1;
    transform: translateY(0);
}
        /* Testimonials Section */
        
        /* team members */
        /* team members */
      
        
    
        
        .team-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(10, 25, 47, 0.1);
            position: relative;
             background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
            overflow: hidden;
        }
        
        .team-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--secondary), var(--secondary));
            
        } 
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .team-member {
            background: white;
               background: linear-gradient(rgba(18, 18, 18, 0.5), var(--glass));
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(10, 25, 47, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
        }
        
        .member-image {
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
               object-position: center 30%;
            transition: transform 0.5s ease;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.05);
        }
        
        .social-links {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 15px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }
        
        .team-member:hover .social-links {
            opacity: 1;
            transform: translateY(0);
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(241, 240, 240);
            color: #d4af37;
            display: flex;
            text-decoration: none;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }
        
        .social-links a:hover {
            background: #d4af37;
            color: white;
            transform: translateY(-5px);
        }
        
        .member-info {
            padding: 25px;
            text-align: center;
            position: relative;
        }
        
        .member-info::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--secondary);
        }
        
        .member-name {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 8px;
            font-weight: 700;
        }
        
        .member-position {
            color:rgb(241, 240, 240);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .member-bio {
            /* color: var(---medium); */
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .member-contact {
            display: flex;
            align-items: center;
            justify-content: center;
              font-weight: 500;
            font-size: .95rem;
            gap: 8px;
        }
        
        .member-contact i {
            color: var(--gold-primary);
        }
        
           .team-section  .stats-container {
            display: flex;
            justify-content: space-around;
          background: linear-gradient(rgba(18, 18, 18, 0.35), var(--glass));
            border-radius: 15px;
            padding: 40px 20px;
            margin: 60px 0;
            box-shadow: 0 10px 30px rgba(10, 25, 47, 0.2);
            position: relative;
        }
        
           .team-section .stat-item {
            text-align: center;
            /* color: white; */
            z-index: 2;
        }
        
          .team-section  .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
        }
        
          .team-section  .stat-label {
            font-size: 1.1rem;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cta-container {
            text-align: center;
            margin: 50px 0 30px;
        }
        
        .cta-title {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            /* color: var(--navy-medium); */
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            line-height: 1.7;
        }
      
        .cta-button {
            padding: 16px 40px;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
               color: white;
                 background: var(--secondary);
        } 
        
        .gold-decoration {
            position: absolute;
            width: 200px;
            height: 200px;
            border: 2px solid rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            opacity: 0.5;
        }
        
        .gold-decoration:before {
            content: "";
            position: absolute;
            width: 150px;
            height: 150px;
            border: 2px solid rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            top: 25px;
            left: 25px;
        }
        
        @media (max-width: 768px) {
             .team-section {
        min-height: 400px;               /* prevent height collapse */
        opacity: 1 !important;            /* override any animation opacity */
    }

            .section-title {
                font-size: 2.2rem;
            }
            
    .stats-container {
        flex-direction: column;
        align-items: center;       /* center all stat items */
        gap: 30px;
        padding: 40px 20px;
    }

    .stats-container .stat-item {
        text-align: center !important;        /* center number and label */
        width: 100%;
        max-width: 280px;   
      /* optional – limits width for better appearance */
    }

    .stats-container .stat-number {
        margin-bottom: 4px;    
    }

   .stats-container .stat-label {
   padding-left: 0 !important; /* remove the previous offset */
        margin-top: 0;
}
    .stats-container .stat-label p {
        margin: auto;                 /* remove default paragraph margins */
        line-height: 1.4;
    }
   .team-grid {
                grid-template-columns: 1fr;
            }
        }
     
     
   @media (max-width: 540px) {
          .social-links {
            position: absolute;
            bottom: 50px;
            left: 0;
            right: 0;
           
            opacity: 1;
          
        }
        
            
        }

     /* Optional: even narrower screens */
@media (max-width: 480px) {
    .stats-container .stat-item {
        max-width: 100%;           /* full width on very small devices */
    }
}
         
  
       
 
        /* Footer */

          .footer {
             background-color:  rgba(15, 14, 0, 0.7);
            color: rgb(247, 243, 243);
            padding: 0px 0 0;
            position: relative;
            overflow: hidden;
    font-family: 'Montserrat', sans-serif;
        }
        
        /* Decorative Elements */
        .footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, var(--secondary), var(--gold-light), var(--gold-medium))
        }
        
       /* Footer Grid */
        
        .contain-decor{
              background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
              padding: 2em;
              border: 10px;
        }
        /* Footer Columns */
        .footer-column {
            margin-bottom: 20px;
            padding: 1em;
        }
        
        .footer-column h3 {
            color: var(--secondary);
            color: white;
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            font-weight: 600;
              font-family: 'Playfair Display', serif;
        }
        
        .footer-column h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gold-medium);
        }
        
        .footer-about p {
            color: #cacaca;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        /* Social Links */
        .social-links-footer {
            display: flex;
            gap: 15px;
        }
        
        .social-links-footer a {
      
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
            text-decoration: none;
        }
         .social-links-footer a:hover {
            background: #ffffff;
                 color: var(--gold-medium);
            transform: translateY(-5px);
        }
        /* Footer Lists */
        .footer-list {
            list-style: none;
            padding: 0;
        }
        
        .footer-list li {
            margin-bottom: 12px;
        }
        
        .footer-list a {
            color: #cacaca;;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 5px 0;
            position: relative;
            padding-left: 20px;
        }
        
        /* Contact Info */
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            color: #cacaca;
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer .contact-info i {
            
            color: var(--gold-medium);
            color: white;
            margin-right: 15px;
            min-width: 20px;
            margin-top: 4px;
        }
        
        /* Newsletter */
        .newsletter-section {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 0;
            margin: 40px 0;
        }
        
        .newsletter-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            justify-content: space-between;
        }
        
        .newsletter-text h4 {
              color: white;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .newsletter-text p {
          color: #cacaca;
            margin: 0;
        }
        
        .newsletter-form {
            display: flex;
            flex: 1;
            min-width: 300px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px 20px;
            border: none;
           
            background: rgba(36, 31, 8, 0.5);
            color: white;
            border-radius: 4px 0 0 4px;
            outline: none;
        }
        
        .newsletter-button {
            background: linear-gradient(135deg, var(--gold-medium) 0%, var(--secondary) 100%);
            color: var(--primary);
            border: none;
            padding: 0 25px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 0 4px 4px 0;
            transition: all 0.3s ease;
        }
        
        /* Footer Bottom */
        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px 0;
            text-align: center;
        }
        
        .footer-bottom-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .copyright {
              color: #cacaca;
            /* margin: 0; */
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            gap: 15px;
        }
        
        .footer-links a {
             color: #cacaca;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        /* Footer Legal Links */
.footer-legal {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-legal a {
    color: #cacaca;                /* matches other footer link color */
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 8px;
    display: inline-block;
}

.footer-legal a:hover {
    color: var(--secondary);       /* gold – #dfb429 */
}

.footer-legal .separator {
    color: #cacaca;
    opacity: 0.5;
    font-weight: 300;
    display: inline-block;
}


        /* Hover Effects */
        .footer-list a:hover,
        .footer-list a:focus {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .footer-list a::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--gold-medium);
            border-radius: 50%;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .footer-list a:hover::before,
        .footer-list a:focus::before {
            opacity: 1;
        }
        
        .social-links a:hover {
            color: var(--gold-light);
            background: rgba(212, 175, 55, 0.2);
            transform: translateY(-3px);
        }
        
        .newsletter-button:hover {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--gold-medium) 100%);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .newsletter-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .newsletter-form {
                width: 100%;
            }
            
            .footer-bottom-container {
                flex-direction: column;
            }
         .contact-card {
            padding: 30px;
            display:block;
            align-items: flex-start;
            gap: 20px;
        }
       
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .lifecycle-nav {
                flex-wrap: wrap;
            }
            
             .contact-container iframe{
            max-width: 400px;
            height: 400px;
        }
        }
        
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
       

        /* Responsive */
        @media (max-width: 1200px) {
            .tabs-container {
                flex-direction: column;
            }
            
            .properties-container {
                flex-direction: column;
            }
            
            .property-filters {
                width: 100%;
            }
        }

        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
          
        }
         
         @media (max-width: 540px) {
          .social-links {
            position: absolute;
            bottom: 50px;
            left: 0;
            right: 0;
           
            opacity: 1;
          
        }
        
            
        }
